home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Reference Guide / C-C++ Interactive Reference Guide.iso / c_ref / csource4 / 219_01 / a65c.h < prev    next >
Text File  |  1989-01-13  |  11KB  |  401 lines

  1. /*
  2.     HEADER:        CUG219;
  3.     TITLE:        65C02 Cross-Assembler (Portable);
  4.     FILENAME:    A65C.H;
  5.     VERSION:    0.1;
  6.     DATE:        08/27/1988;
  7.  
  8.     DESCRIPTION:    "This program lets you use your computer to assemble
  9.             code for the Rockwell 65C02 microprocessor.  The
  10.             program is written in portable C rather than BDS C.
  11.             All assembler features are supported except relocation
  12.             linkage, and macros.";
  13.  
  14.     KEYWORDS:    Software Development, Assemblers, Cross-Assemblers,
  15.             Rockwell, 65C02;
  16.  
  17.     SYSTEM:        CP/M-80, CP/M-86, HP-UX, MSDOS, PCDOS, QNIX;
  18.     COMPILERS:    Aztec C86, Aztec CII, CI-C86, Eco-C, Eco-C88, HP-UX,
  19.             Lattice C, Microsoft C,    QNIX C;
  20.  
  21.     WARNINGS:    "This program is written in as portable C as possible.
  22.             A port to BDS C would be extremely difficult, but see
  23.             volume CUG113.  A port to Toolworks C is untried."
  24.  
  25.     AUTHORS:    William C. Colley III;
  26. */
  27.  
  28. /*
  29.               65C02 Cross-Assembler in Portable C
  30.  
  31.            Copyright (c) 1986 William C. Colley, III
  32.  
  33. Revision History:
  34.  
  35. Ver    Date        Description
  36.  
  37. 0.0    NOV 1986    Derived from my 6800/6801 cross-assembler.  WCC3.
  38.  
  39. 0.1    AUG 1988    Fixed a bug in the command line parser that puts it
  40.             into a VERY long loop if the user types a command line
  41.             like "A65C FILE.ASM -L".  WCC3 per Alex Cameron.
  42.  
  43. This header file contains the global constants and data type definitions for
  44. all modules of the cross-assembler.  This also seems a good place to put the
  45. compilation and linkage instructions for the animal.  This list currently
  46. includes the following compilers:
  47.  
  48.         Compiler Name        Op. Sys.    Processor
  49.  
  50.     1)  Aztec C86            CP/M-86        8086, 8088
  51.                     MSDOS/PCDOS
  52.  
  53.     2)  AZTEC C II            CP/M-80        8080, Z-80
  54.  
  55.     3)  Computer Innovations C86    MSDOS/PCDOS    8086, 8088
  56.  
  57.     4)  Eco-C            CP/M-80        Z-80
  58.  
  59.     5)  Eco-C88            MSDOS/PCDOS    8086, 8088
  60.  
  61.     6)  HP C            HP-UX        68000
  62.  
  63.     7)  Lattice C            MSDOS/PCDOS    8086, 8088
  64.  
  65.     8)  Microsoft C            MSDOS/PCDOS    8086, 8088
  66.  
  67.     9)  QNIX C            QNIX        8086, 8088
  68.  
  69. Further additions will be made to the list as users feed the information to
  70. me.  This particularly applies to UNIX and IBM-PC compilers.
  71.  
  72. Compile-assemble-link instructions for this program under various compilers
  73. and operating systems:
  74.  
  75.     1)    Aztec C86:
  76.  
  77.     A)  Uncomment out the "#define AZTEC_C 1" line and comment out all
  78.         other compiler names in A65C.H.
  79.  
  80.     B)  Assuming that all files are on drive A:, run the following sequence
  81.         of command lines:
  82.  
  83.         A>cc a65c
  84.         A>cc a65ceval
  85.         A>cc a65cutil
  86.         A>ln a65c.o a65ceval.o a65cutil.o -lc
  87.         A>era a65c*.o
  88.  
  89.     2)  Aztec CII (version 1.06B):
  90.  
  91.     A)  Uncomment out the "#define AZTEC_C 1" line and comment out all
  92.         other compiler names in A65C.H.
  93.  
  94.     B)  Assuming the C compiler is called "CC.COM" and all files are
  95.         on drive A:, run the following sequence of command lines:
  96.  
  97.         A>cc a65c
  98.         A>as -zap a65c
  99.         A>cc a65ceval
  100.         A>as -zap a65ceval
  101.         A>cc a65cutil
  102.         A>as -zap a65cutil
  103.         A>ln a65c.o a65ceval.o a65cutil.o -lc
  104.         A>era a65c*.o
  105.  
  106.     3)  Computer Innovations C86:
  107.  
  108.     A)  Uncomment out the "#define CI_C86 1" line and comment out all
  109.         other compiler names in A65C.H.
  110.  
  111.     B)  Compile the files A65C.C, A65CEVAL.C, and A65CUTIL.C.  Link
  112.         according to instructions that come with the compiler.
  113.  
  114.     4)  Eco-C (CP/M-80 version 3.10):
  115.  
  116.     A)  Uncomment out the "#define ECO_C 1" line and comment out all
  117.         other compiler names in A65C.H.
  118.  
  119.     B)  Assuming all files are on drive A:, run the following sequence of
  120.         command lines:
  121.  
  122.         A>cp a65c -i -m
  123.         A>cp a65ceval -i -m
  124.         A>cp a65cutil -i -m
  125.         A>l80 a65c,a65ceval,a65cutil,a65c/n/e
  126.         A>era a65c*.mac
  127.         A>era a65c*.rel
  128.  
  129.     5)  Eco-C88:
  130.  
  131.     A)  Uncomment out the "#define ECO_C 1" line and comment out all
  132.         other compiler names in A65C.H.
  133.  
  134.     B)  Compile the files A65C.C, A65CEVAL.C, and A65CUTIL.C.  Link
  135.         according to instructions that come with the compiler.
  136.  
  137.     6)  HP-UX (a UNIX look-alike running on an HP-9000 Series 200/500,
  138.     68000-based machine):
  139.  
  140.     A)  Uncomment out the "#define HP_UX 1" line and comment out all
  141.         other compiler names in A65C.H.
  142.  
  143.     B)  Run the following command line:
  144.  
  145.         . cc a65c.c a65ceval.c a65cutil.c
  146.  
  147.     7)  Lattice C:
  148.  
  149.     A)  Uncomment out the "#define LATTICE_C 1" line and comment out all
  150.         other compiler names in A65C.H.
  151.  
  152.     B)  Compile the files A65C.C, A65CEVAL.C, and A65CUTIL.C.  Link
  153.         according to instructions that come with the compiler.
  154.  
  155.     8)  Microsoft C (version 3.00):
  156.  
  157.     A)  Uncomment out the "#define MICROSOFT_C 1" line and comment out
  158.         all other compiler names in A65C.H.
  159.  
  160.     B)  Run the following command line:
  161.  
  162.         C>cl a65c.c a65ceval.c a65cutil.c
  163.  
  164.     9)    QNIX C:
  165.  
  166.     A)  Uncomment out the "#define QNIX 1" line and comment out all other
  167.         compiler names in A65C.H.
  168.  
  169.     B)  Run the following command line:
  170.  
  171.         . cc a65c.c a65ceval.c a65cutil.c
  172.  
  173. Note that, under CP/M-80, you can't re-execute a core image from a previous
  174. assembly run with the "@.COM" trick.  This technique is incompatible with the
  175. Aztec CII compiler, so I didn't bother to support it at all.
  176. */
  177.  
  178. #include <stdio.h>
  179.  
  180. /*  Comment out all but the line containing the name of your compiler:    */
  181.  
  182. #define        AZTEC_C        1
  183. /* #define    CI_C86        1                    */
  184. /* #define    ECO_C        1                    */
  185. /* #define    HP_UX        1                    */
  186. /* #define    LATTICE_C    1                    */
  187. /* #define    MICROSOFT_C    1                    */
  188. /* #define    QNIX        1                    */
  189.  
  190. /*  Compiler dependencies:                        */
  191.  
  192. #ifdef    AZTEC_C
  193. #define    getc(f)        agetc(f)
  194. #define    putc(c,f)    aputc(c,f)
  195. #endif
  196.  
  197. #ifndef    ECO_C
  198. #define    FALSE        0
  199. #define    TRUE        (!0)
  200. #endif
  201.  
  202. #ifdef    LATTICE_C
  203. #define    void        int
  204. #endif
  205.  
  206. #ifdef    QNIX
  207. #define    fprintf        tfprintf
  208. #define    printf        tprintf
  209. #endif
  210.  
  211. /*  On 8-bit machines, the static type is as efficient as the register    */
  212. /*  type and far more efficient than the auto type.  On larger machines    */
  213. /*  such as the 8086 family, this is not necessarily the case.  To    */
  214. /*  let you experiment to see what generates the fastest, smallest code    */
  215. /*  for your machine, I have declared internal scratch variables in    */
  216. /*  functions "SCRATCH int", "SCRATCH unsigned", etc.  A SCRATCH    */
  217. /*  varible is made static below, but you might want to try register    */
  218. /*  instead.                                */
  219.  
  220. #define    SCRATCH        static
  221.  
  222. /*  A slow, but portable way of cracking an unsigned into its various    */
  223. /*  component parts:                            */
  224.  
  225. #define    clamp(u)    ((u) &= 0xffff)
  226. #define    high(u)        (((u) >> 8) & 0xff)
  227. #define    low(u)        ((u) & 0xff)
  228. #define    word(u)        ((u) & 0xffff)
  229.  
  230. /*  The longest source line the assembler can hold without exploding:    */
  231.  
  232. #define    MAXLINE        255
  233.  
  234. /*  The maximum number of source files that can be open simultaneously:    */
  235.  
  236. #define    FILES        4
  237.  
  238. /*  The fatal error messages generated by the assembler:        */
  239.  
  240. #define    ASMOPEN        "Source File Did Not Open"
  241. #define    ASMREAD        "Error Reading Source File"
  242. #define    DSKFULL        "Disk or Directory Full"
  243. #define    FLOFLOW        "File Stack Overflow"
  244. #define    HEXOPEN        "Object File Did Not Open"
  245. #define    IFOFLOW        "If Stack Overflow"
  246. #define    LSTOPEN        "Listing File Did Not Open"
  247. #define    NOASM        "No Source File Specified"
  248. #define    SYMBOLS        "Too Many Symbols"
  249.  
  250. /*  The warning messages generated by the assembler:            */
  251.  
  252. #define    BADOPT        "Illegal Option Ignored"
  253. #define    NOHEX        "-o Option Ignored -- No File Name"
  254. #define    NOLST        "-l Option Ignored -- No File Name"
  255. #define    TWOASM        "Extra Source File Ignored"
  256. #define    TWOHEX        "Extra Object File Ignored"
  257. #define    TWOLST        "Extra Listing File Ignored"
  258.  
  259. /*  Line assembler (A65C.C) constants:                    */
  260.  
  261. #define    BIGINST        3        /*  longest instruction length    */
  262. #define    IFDEPTH        16        /*  maximum IF nesting level    */
  263. #define    NOP        0xea        /*  processor's NOP opcode    */
  264. #define    ON        1        /*  assembly turned on        */
  265. #define    OFF        -1        /*  assembly turned off        */
  266.  
  267. /*  Line assembler (A65C.C) opcode attribute word flag masks:        */
  268.  
  269. #define    PSEUDO        0x80    /*  is pseudo op            */
  270. #define    ISIF        0x40    /*  is IF, ELSE, or ENDIF        */
  271.  
  272. /*  Line assembler (A65C.C) pseudo-op opcode token values:        */
  273.  
  274. #define    ELSE        1
  275. #define    END        2
  276. #define    ENDI        3
  277. #define    EQU        4
  278. #define    FCB        5
  279. #define    FCC        6
  280. #define    FDB        7
  281. #define    IF        8
  282. #define    INCL        9
  283. #define    ORG        10
  284. #define    PAGE        11
  285. #define    RMB        12
  286. #define    SET        13
  287. #define    TITL        14
  288.  
  289. /*  Line assembler (A65C.C) machine opcode attribute values:        */
  290.  
  291. #define    RMBOP        0
  292. #define    CPXY        1
  293. #define    TSBOP        2
  294. #define    INHOP        3
  295. #define    JUMP        4
  296. #define    CALL        5
  297. #define    BBOP        6
  298. #define    RELBR        7
  299. #define    STXY        8
  300. #define    TWOOP        9
  301. #define    BIT        10
  302. #define    LOGOP        11
  303. #define    LDXY        12
  304. #define    INCOP        13
  305. #define    STZ        14
  306.  
  307. /*  Opcode argument field parser (A65CEVAL.C) attribute bit masks:    */
  308.  
  309. #define    ARGA        040    /*  A register specified.        */
  310. #define    ARGX        020    /*  X register specified.        */
  311. #define    ARGY        010    /*  Y register specified.        */
  312. #define    ARGIND        004    /*  Argument field in parentheses.    */
  313. #define    ARGIMM        002    /*  Immediate addressing specified.    */
  314. #define    ARGNUM        001    /*  Argument value present.        */
  315.  
  316. /*  Lexical analyzer (A65CEVAL.C) token buffer and stream pointer:    */
  317.  
  318. typedef struct {
  319.     unsigned attr;
  320.     unsigned valu;
  321.     char sval[MAXLINE + 1];
  322. } TOKEN;
  323.  
  324. /*  Lexical analyzer (A65CEVAL.C) token attribute values:        */
  325.  
  326. #define    EOL        0    /*  end of line                */
  327. #define    SEP        1    /*  field separator            */
  328. #define    OPR        2    /*  operator                */
  329. #define    STR        3    /*  character string            */
  330. #define    VAL        4    /*  value                */
  331. #define    IMM        5    /*  immediate designator        */
  332. #define    REG        6    /*  register designator            */
  333.  
  334. /*  Lexical analyzer (A65CEVAL.C) token attribute word flag masks:    */
  335.  
  336. #define    BINARY        0x8000    /*  Operator:    is binary operator    */
  337. #define    UNARY        0x4000    /*        is unary operator    */
  338. #define    PREC        0x0f00    /*        precedence        */
  339.  
  340. #define    FORWD        0x8000    /*  Value:    is forward referenced    */
  341. #define    SOFT        0x4000    /*        is redefinable        */
  342.  
  343. #define    TYPE        0x000f    /*  All:    token type        */
  344.  
  345. /*  Lexical analyzer (A65CEVAL.C) operator token values (unlisted ones    */
  346. /*  use ASCII characters):                        */
  347.  
  348. #define    AND        0
  349. #define    GE        1
  350. #define    HIGH        2
  351. #define    LE        3
  352. #define    LOW        4
  353. #define    MOD        5
  354. #define    NE        6
  355. #define    NOT        7
  356. #define    OR        8
  357. #define    SHR        9
  358. #define    SHL        10
  359. #define    XOR        11
  360.  
  361. /*  Lexical analyzer (A65CEVAL.C) operator precedence values:        */
  362.  
  363. #define    UOP1        0x0000    /*  unary +, unary -            */
  364. #define    MULT        0x0100    /*  *, /, MOD, SHL, SHR            */
  365. #define    ADDIT        0x0200    /*  binary +, binary -            */
  366. #define    RELAT        0x0300    /*  >, >=, =, <=, <, <>            */
  367. #define    UOP2        0x0400    /*  NOT                    */
  368. #define    LOG1        0x0500    /*  AND                    */
  369. #define    LOG2        0x0600    /*  OR, XOR                */
  370. #define    UOP3        0x0700    /*  HIGH, LOW                */
  371. #define    START2        0x0800    /*  beginning of subexpression        */
  372. #define    RPREN        0x0900    /*  )                    */
  373. #define    LPREN        0x0a00    /*  (                    */
  374. #define    ENDEX        0x0b00    /*  end of expression            */
  375. #define    START        0x0c00    /*  beginning of expression        */
  376.  
  377. /*  Utility package (A65CUTIL.C) symbol table routines:            */
  378.  
  379. struct _symbol {
  380.     unsigned attr;
  381.     unsigned valu;
  382.     struct _symbol *left, *right;
  383.     char sname[1];
  384. };
  385.  
  386. typedef struct _symbol SYMBOL;
  387.  
  388. #define    SYMCOLS        4
  389.  
  390. /*  Utility package (A65CUTIL.C) opcode/operator table routines:    */
  391.  
  392. typedef struct {
  393.     unsigned attr;
  394.     unsigned valu;
  395.     char oname[5];
  396. } OPCODE;
  397.  
  398. /*  Utility package (A65CUTIL.C) hex file output routines:        */
  399.  
  400. #define    HEXSIZE        32
  401.